home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / tu32.zip / TU32DEMO / BTCHDEMO / BTCHPRG2.DPR next >
Text File  |  1996-11-07  |  402b  |  17 lines

  1. program Btchprg2;
  2.  
  3. uses
  4.   Forms,
  5.   Statdlg in 'STATDLG.PAS' {FormStatus},
  6.   Errtbdlg in 'ERRTBDLG.PAS' {BtnBottomDlg},
  7.   Bthmain2 in 'BTHMAIN2.PAS' {FormBatchAliasMain};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TFormBatchAliasMain, FormBatchAliasMain);
  13.   Application.CreateForm(TFormStatus, FormStatus);
  14.   Application.CreateForm(TBtnBottomDlg, BtnBottomDlg);
  15.   Application.Run;
  16. end.
  17.